#ifndef DELTA_testMultiWin #define DELTA_testMultiWin // TestNestedView.cpp : declares the interface of the application #include class TestNestedView : public dtABC::Application { public: TestNestedView(const std::string& configFilename = ""); protected: virtual ~TestNestedView(); public: virtual void Config(); /** * KeyboardListener override * Called when a key is pressed. * * @param keyboard the source of the event * @param key the key pressed * @param character the corresponding character */ bool KeyPressed(const dtCore::Keyboard* keyboard, int key); private: dtCore::RefPtr mCam2; dtCore::RefPtr mCam3; dtCore::RefPtr mRedView; dtCore::RefPtr mGreenView; dtCore::RefPtr mBlueView; }; #endif // DELTA_testMultiWin