summaryrefslogtreecommitdiff
path: root/Tests/CSharpLinkFromCxx/UsefulManagedCppClass.hpp
blob: def7cea0c7243c925be85c55c6c9514bdf907642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using namespace System;

namespace CSharpLibrary
{
    public ref class UsefulManagedCppClass
    {
    public:

        UsefulManagedCppClass();
        void RunTest();

    private:

        String^ m_usefulString;
    };
}