blob: 43feab863b59d56fc718c8ab2043c23e84be92d7 [file] [log] [blame]
jbates@chromium.orgd96f2ad2012-04-17 04:13:02 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
tsepez@chromium.org1ac46132011-02-12 03:46:19 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef IPC_STRUCT_CONSTRUCTOR_MACROS_H_
6#define IPC_STRUCT_CONSTRUCTOR_MACROS_H_
7
8// Null out all the macros that need nulling.
9#include "ipc/ipc_message_null_macros.h"
10
11// Set up so next include will generate constructors.
jam@chromium.org959e5f72011-11-22 03:29:36 +090012#undef IPC_STRUCT_BEGIN_WITH_PARENT
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090013#undef IPC_STRUCT_MEMBER
14#undef IPC_STRUCT_END
jam@chromium.org959e5f72011-11-22 03:29:36 +090015#define IPC_STRUCT_BEGIN_WITH_PARENT(struct_name, parent) \
16 struct_name::struct_name() : parent()
jbates@chromium.orgd96f2ad2012-04-17 04:13:02 +090017#define IPC_STRUCT_MEMBER(type, name, ...) , name(__VA_ARGS__)
tsepez@chromium.org1ac46132011-02-12 03:46:19 +090018#define IPC_STRUCT_END() {}
19
20#endif // IPC_STRUCT_CONSTRUCTOR_MACROS_H_
21