PageRenderTime 39ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/trunk/Examples/python/performance/operator/Simple.i

#
Swig | 8 lines | 8 code | 0 blank | 0 comment | 0 complexity | bf935bca83742fc1b616786e4d2ce2f0 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %inline %{
  2. class MyClass {
  3. public:
  4. MyClass () {}
  5. ~MyClass () {}
  6. MyClass& operator+ (int i) { return *this; }
  7. };
  8. %}