You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
616 B
27 lines
616 B
// TestCommand class, extends Command base class. Used for Command design pattern implementation
|
|
// pre-tests. Will be removed as soon as possible.
|
|
// Created by Krisjanis Rijnieks 2015-03-23
|
|
|
|
#pragma once
|
|
|
|
#include "ofxPiMapper.h"
|
|
#include "BaseCommand.h"
|
|
|
|
class ofxPiMapper;
|
|
|
|
namespace ofx{
|
|
namespace piMapper{
|
|
|
|
class TestCommand : public BaseCommand{
|
|
|
|
public:
|
|
TestCommand(ofxPiMapper * a);
|
|
void exec();
|
|
|
|
private:
|
|
ofxPiMapper * _application;
|
|
};
|
|
|
|
} // namespace piMapper
|
|
} // namespace ofx
|
|
|
|
|