blob: c105f71ef8acf6cb49485725fb5ae81fca8a1ce5 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IPC_IPC_SENDER_H_
#define IPC_IPC_SENDER_H_
#include "base/component_export.h"
namespace IPC {
class COMPONENT_EXPORT(IPC) Sender {
protected:
virtual ~Sender() {}
};
} // namespace IPC
#endif // IPC_IPC_SENDER_H_