Sha256: 063de07dd97f8f89f2be0a9fd15687f5d63c2eafbcc9b8a70d9b3cfe561aadfd

Contents?: true

Size: 443 Bytes

Versions: 4

Compression:

Stored size: 443 Bytes

Contents

/************************************
 ************************************/
#ifndef LIMONP_NONCOPYABLE_H
#define LIMONP_NONCOPYABLE_H

#include <iostream>
#include <string>

namespace Limonp
{
    class NonCopyable
    {
        protected:
            NonCopyable(){};
            ~NonCopyable(){};
        private:
            NonCopyable(const NonCopyable& );
            const NonCopyable& operator=(const NonCopyable& );
    };
}

#endif

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
jieba_rb-0.0.5 ext/cppjieba/src/Limonp/NonCopyable.hpp
jieba_rb-0.0.2 ext/cppjieba/src/Limonp/NonCopyable.hpp
jieba_rb-0.0.1 ext/cppjieba/src/Limonp/NonCopyable.hpp
jieba_ffi-0.0.3 ext/libcppjieba/include/Limonp/NonCopyable.hpp