00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef SCALING_USR_H
00012 #define SCALING_USR_H
00013
00014 #include "yapi.h"
00015 #include "vya.h"
00016 #include "scaling_args.h"
00017
00018 class ScalingUsr: public Process
00019 {
00020 public:
00021
00022 ScalingUsr
00023 (
00024 const Id& n,
00025 Out<scaling_args_t>& arguments,
00026 char* filename
00027 );
00028
00029
00030 const char* type() const { return "ScalingUsr"; }
00031
00032
00033 void main();
00034
00035 private:
00036 OutPort<scaling_args_t> argumentsP;
00037
00038 char* cfg_filename;
00039 };
00040
00041 #endif // SCALING_USR_H