Device

The Device class …

In this example …

Python Device Example

Below is an example of creating a Device which …

import pyrogue

# Create a subclass of a Device
class MyDevice(...):

C++ Device Example

Below is an example of creating a Device class in C++.

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

// Create a subclass of a Device
class MyDevice : public rogue:: ... {
   public:

   protected:

};

A few notes on the above examples …