Command

The Command class …

In this example …

Python Command Example

Below is an example of creating a Command which …

import pyrogue

# Create a subclass of a command
class MyCommand(...):

C++ Command Example

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

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

// Create a subclass of a command
class MyCommand : public rogue:: ... {
   public:

   protected:

};

A few notes on the above examples …

Types Of Commands In The PyRogue Tree: