PStack  2.0
Stack trace printer for MSVC and GCC binaries
stack_allocated.hpp
Go to the documentation of this file.
1 // ===-- include/psystem/framework/stack_allocated.hpp ---- -*- C++ -*- --=== //
2 // Copyright (c) 2014 Matt Bisson. All rights reserved.
17 #pragma once
18 #ifndef PSYSTEM_FRAMEWORK_STACK_ALLOCATED_HPP
19 #define PSYSTEM_FRAMEWORK_STACK_ALLOCATED_HPP
20 
21 #include "platform.hpp"
22 
23 namespace psystem {
24 
43 {
47 
49  static void operator delete(void*) = delete;
50 
52  static void operator delete[](void*) = delete;
53 
55  static void *operator new(size_t) = delete;
56 
58  static void *operator new[](size_t) = delete;
59 };
60 
61 } // namespace psystem
62 
63 #endif // PSYSTEM_FRAMEWORK_STACK_ALLOCATED_HPP
Master header file for Platform-wide declarations.
Disable heap allocation and deallocation.
Definition: stack_allocated.hpp:42
Contains the process examination "system" and basic frameworks.
Definition: pstack_event_handler.hpp:28