Sha256: 2a8bfe804e6397ec08b853b9f7defd5379dcb96dab2eb4773ca6d7ee2082d00f

Contents?: true

Size: 354 Bytes

Versions: 13

Compression:

Stored size: 354 Bytes

Contents

#ifndef __SUBTRACTER_H__
#define __SUBTRACTER_H__

#include <string>
using namespace std;

namespace subtracter {
  class Subtracter {
    public:
      Subtracter() { }

      int subIntegers(int a, int b) { return a - b; }

      float subFloats(float a, float b) { return a - b; }

      string getClassName() { return "Subtracter"; }
  };
}

#endif 

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
rbplusplus-1.4.0 test/headers/Subtracter.hpp
rbplusplus-1.3.0 test/headers/Subtracter.hpp
rbplusplus-1.2.1 test/headers/Subtracter.hpp
rbplusplus-1.2.0 test/headers/Subtracter.hpp
rbplusplus-1.1.0 test/headers/Subtracter.hpp
rbplusplus-1.0.3 test/headers/Subtracter.hpp
rbplusplus-1.0.1 test/headers/Subtracter.hpp
rbplusplus-1.0 test/headers/Subtracter.hpp
rbplusplus-0.9.1 test/headers/Subtracter.hpp
rbplusplus-0.9 test/headers/Subtracter.hpp
rbplusplus-0.1.1 test/headers/Subtracter.hpp
rbplusplus-0.1 test/headers/Subtracter.hpp
rbplusplus-0.8 test/headers/Subtracter.hpp