Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

color.hh

Go to the documentation of this file.
00001 #ifndef _color_hh_
00002 #define _color_hh_
00003 
00004 #include "ability.hh"
00005 #include "vector.hh"
00006 
00007 namespace anoid {
00008     namespace plugin {
00009 
00014         class Color: public base::Ability {
00015             protected:
00016                 simple::Vector color;
00017             public:
00018                 virtual simple::Vector getColor();
00019                 virtual void setColor(const simple::Vector &v);
00020                 Color();
00021                 virtual void init(config::Configuration &c);
00022                 virtual void redraw();
00023         };
00024 
00025     };
00026 };
00027 
00028 #endif

Anoid NG © Michael Westergaard, Martin Stig Stissing, Ronni Michael Laursen, and Kristian Bisgaard Lassen