Help for this page

Select Code to Download


  1. or download this
    for (int i=0; i < SomeValue; i++)
    {
    ...
    
        p = (Class_p)* some_param;
        SomeID = p->getID;
    
  2. or download this
    class SystemCase{
        public:
    ...
        public:
           SomeArrayType runMethod(){ ... }
    };
    
  3. or download this
    for (int i=0; i < SomeValue; i++)
    {
    ...
        SystemCase sc = SystemCase::getInstance(p); 
        SomeArray[i].value = sc.runMethod();
    }