1 : /* -*- c++ -*- */
2 : /*
3 : * Copyright (c) 2013 The Native Client Authors. All rights reserved.
4 : * Use of this source code is governed by a BSD-style license that can be
5 : * found in the LICENSE file.
6 : */
7 :
8 : #ifndef NATIVE_CLIENT_SRC_TRUSTED_NONNACL_UTIL_SEL_LDR_LAUNCHER_ZYGOTE_BASE_H_
9 : #define NATIVE_CLIENT_SRC_TRUSTED_NONNACL_UTIL_SEL_LDR_LAUNCHER_ZYGOTE_BASE_H_
10 :
11 : namespace nacl {
12 : class ZygoteBase {
13 : public:
14 14 : ZygoteBase() {}
15 13 : virtual ~ZygoteBase() {}
16 : virtual bool Init() = 0;
17 : };
18 : }
19 :
20 : #endif
|