#ifndef MOJO_PUBLIC_CPP_BINDINGS_TESTS_TEST_NATIVE_TYPES_H_
#define MOJO_PUBLIC_CPP_BINDINGS_TESTS_TEST_NATIVE_TYPES_H_
#include <string>
#include "ipc/ipc_message.h"
#include "ipc/ipc_param_traits.h"
#include "mojo/public/cpp/system/message_pipe.h"
namespace mojo {
namespace test {
class TestNativeStruct { … };
class TestNativeStructWithAttachments { … };
}
}
namespace IPC {
template <>
struct ParamTraits<mojo::test::TestNativeStruct> { … };
template <>
struct ParamTraits<mojo::test::TestNativeStructWithAttachments> { … };
}
#endif