/*----------------------------------------------------------------------------*/ /* CameraModule.h */ /*----------------------------------------------------------------------------*/ // Copyright (c) 2007 Scenomics. All Rights Reserved. You may not alter or remove this copyright notice. #if !defined(CAMERA_MODULE_H) #define CAMERA_MODULE_H #include #include "Preferences.h" SCENOMEPLATFORMAPI_BEGINS; #if defined(GB_EXP_CAMERA_CLASS) #define SPA_CAMERA_CLASS SPA_EXPORT #else #define SPA_CAMERA_CLASS SPA_IMPORT #endif /*----------------------------------------------------------------------------*/ /* Camera_Module Declaration */ /*----------------------------------------------------------------------------*/ //@ The Camera_Module class defines a module for registering the //@ Camera classes. class Camera_Module: public ExternalModule { public: //@c Module Data static PersistentPreferenceStore CameraPreferences; //@c Constructors, Destructors, and Type Methods Camera_Module(); }; SCENOMEPLATFORMAPI_ENDS; // !CAMERA_MODULE_H #endif