LocalVariable
The LocalVariable class …
In this example …
Python LocalVariable Example
Below is an example of creating a LocalVariable which …
import pyrogue
# Create a subclass of a LocalVariable
class MyLocalVariable(...):
C++ LocalVariable Example
Below is an example of creating a LocalVariable device in C++.
#include <rogue/interfaces/memory/Constants.h>
#include <boost/thread.hpp>
// Create a subclass of a LocalVariable
class MyLocalVariable : public rogue:: ... {
public:
protected:
};
A few notes on the above examples …