00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _SK_SYS_PIPELINE_
00009 #define _SK_SYS_PIPELINE_
00010
00011 #include <sk/util/Object.h>
00012
00013 namespace sk {
00014 namespace sys {
00015 class Pipeline
00016 : public virtual sk::util::Object
00017 {
00018 public:
00019 Pipeline();
00020 virtual ~Pipeline();
00021
00022
00023 const sk::util::Class getClass() const;
00024
00025 private:
00026 Pipeline(const Pipeline& other);
00027 Pipeline& operator = (const Pipeline& other);
00028 };
00029 }
00030 }
00031
00032 #endif