stdcpp/tsrc/Stdcpp_test/stlport/auto/stlport_rawiter/src/rawiter.hpp
author hgs
Tue, 20 Jul 2010 16:35:53 +0530
changeset 44 97b0fb8a2cc2
parent 18 47c74d1534e1
permissions -rw-r--r--
201025


class X
{
  public:
    X(int i_ = 0) : i(i_) {}
    ~X() {}
    operator int() const { return i; }
 
  private:
    int i;
};