LinkVariable

The LinkVariable class …

In this example …

Python LinkVariable Example

Below is an example of creating a LinkVariable which …

import pyrogue

# Create a subclass of a LinkVariable
class MyLinkVariable(...):

C++ LinkVariable Example

Below is an example of creating a LinkVariable device in C++.

#include <rogue/interfaces/memory/Constants.h>
#include <boost/thread.hpp>

// Create a subclass of a LinkVariable
class MyLinkVariable : public rogue:: ... {
   public:

   protected:

};

A few notes on the above examples …