//
//  Testclass.hpp
//  agkinterpreter
//
//  Created by Jerry on 6/12/17.
//
//

#ifndef Testclass_hpp
#define Testclass_hpp


class Testclass {
private:
    int test_number=111;
    
public:
    void print_test_number();
};

#endif /* Testclass_hpp */
