Sha256: 4437cfbb371d512665c02fc6a1a5bb16ac89ec85b8f6dd9992fc3389bd88d418

Contents?: true

Size: 260 Bytes

Versions: 6

Compression:

Stored size: 260 Bytes

Contents

#ifndef __MY_TYPE_H__
#define __MY_TYPE_H__

class MyType {
  int myValue;

  public:
  MyType() { myValue = 0; }

  // Exposing attributes not implemented yet
  int value() const { return myValue; }

  void setValue(int value) { myValue = value; }
};

#endif

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rbplusplus-1.4.0 test/headers/code/my_type.hpp
rbplusplus-1.3.0 test/headers/code/my_type.hpp
rbplusplus-1.2.1 test/headers/code/my_type.hpp
rbplusplus-1.2.0 test/headers/code/my_type.hpp
rbplusplus-1.1.0 test/headers/code/my_type.hpp
rbplusplus-1.0.3 test/headers/code/my_type.hpp