GP-3276 Put all C++ classes in ghidra namespace

This commit is contained in:
caheckman 2023-03-30 15:35:19 -04:00
parent ca9a56b5f4
commit fe137f20f3
217 changed files with 1635 additions and 554 deletions

View file

@ -13,11 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __CPUI_PARAMID__
#define __CPUI_PARAMID__
#ifndef __PARAMID_HH__
#define __PARAMID_HH__
#include "funcdata.hh"
namespace ghidra {
extern ElementId ELEM_PARAMMEASURES; ///< Marshaling element \<parammeasures>
extern ElementId ELEM_PROTO; ///< Marshaling element \<proto>
extern ElementId ELEM_RANK; ///< Marshaling element \<rank>
@ -76,4 +78,5 @@ public:
void savePretty( ostream &s, bool moredetail ) const;
};
#endif //ifndef __CPUI_PARAMID__
} // End namespace ghidra
#endif //ifndef __PARAMID_HH__