![]() |
C++ Samples
Demonstrates how to create a C++ application using the VideoXpert SDK
|
This plugin sample print all drawings available in the current system. More...
#include <ViewAllDrawings.h>
Public Member Functions | |
ViewAllDrawings (const std::string description) | |
~ViewAllDrawings () | |
CppSamples::Common::Plugin * | Run (CppSamples::Common::DataModel *dataModel) override |
Print all drawings available in the current system. More... | |
![]() | |
Plugin (const std::string description) | |
virtual | ~Plugin () |
std::string | GetDescription () const |
Gets the description of this plugin. More... | |
Plugin * | GetParent () const |
Gets the reference to the parent of this plugin. More... | |
void | SetParent (Plugin *parent) |
Sets the reference to the parent of this plugin. More... | |
Static Protected Member Functions | |
static VxSdk::VxCollection< VxSdk::IVxDrawing ** > | GetDrawings (VxSdk::IVxSystem *vxSystem) |
Get a collection of drawings from the given VideoExpert system. More... | |
static void | PrintDrawings (VxSdk::VxCollection< VxSdk::IVxDrawing ** > drawingCollection) |
Prints the given collection of drawings to the screen. More... | |
This plugin sample print all drawings available in the current system.
Definition at line 12 of file ViewAllDrawings.h.
Inherits CppSamples::Common::Plugin.
|
inline |
Definition at line 14 of file ViewAllDrawings.h.
|
inline |
Definition at line 15 of file ViewAllDrawings.h.
|
staticprotected |
Get a collection of drawings from the given VideoExpert system.
vxSystem | Pointer to the VideoExpert system. |
Definition at line 33 of file ViewAllDrawings.cpp.
|
staticprotected |
Prints the given collection of drawings to the screen.
drawingCollection | Collection of drawings. |
Definition at line 47 of file ViewAllDrawings.cpp.
|
overridevirtual |
Print all drawings available in the current system.
dataModel | Instance of data model. |
Implements CppSamples::Common::Plugin.
Definition at line 13 of file ViewAllDrawings.cpp.