1 //
2 // Copyright (c) 2010-2024 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license text is available in 'licenses/MIT.txt'.
6 //
7 using System;
8 using Antmicro.Renode.UserInterface;
9 
10 namespace Antmicro.Renode.Plugins.CoSimulationPlugin
11 {
12     [Plugin(Name = "Cosimulation Plugin", Version = "1.0", Description = "Provides Verilog simulation integration.", Vendor = "Antmicro")]
13     public sealed class CoSimulationPlugin : IDisposable
14     {
CoSimulationPlugin(Monitor monitor)15         public CoSimulationPlugin(Monitor monitor)
16         {
17         }
18 
Dispose()19         public void Dispose()
20         {
21         }
22     }
23 }
24