Files
rk35xx-android14/frameworks/compile/mclinker/include/mcld/Script/GroupCmd.h
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

54 lines
1.2 KiB
C++

//===- GroupCmd.h ---------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_SCRIPT_GROUPCMD_H_
#define MCLD_SCRIPT_GROUPCMD_H_
#include "mcld/Script/ScriptCommand.h"
namespace mcld {
class InputTree;
class InputBuilder;
class GroupReader;
class LinkerConfig;
class StringList;
/** \class GroupCmd
* \brief This class defines the interfaces to Group command.
*/
class GroupCmd : public ScriptCommand {
public:
GroupCmd(StringList& pStringList,
InputTree& pInputTree,
InputBuilder& pBuilder,
GroupReader& m_GroupReader,
const LinkerConfig& pConfig);
~GroupCmd();
void dump() const;
static bool classof(const ScriptCommand* pCmd) {
return pCmd->getKind() == ScriptCommand::GROUP;
}
void activate(Module& pModule);
private:
StringList& m_StringList;
InputTree& m_InputTree;
InputBuilder& m_Builder;
GroupReader& m_GroupReader;
const LinkerConfig& m_Config;
};
} // namespace mcld
#endif // MCLD_SCRIPT_GROUPCMD_H_