source: doc/papers/general/evaluation/cpp-vstack.hpp @ f86c8e5

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since f86c8e5 was f86c8e5, checked in by Aaron Moss <a3moss@…>, 6 years ago

Remove move-operators from C++, C++obj benchmarks for parity

  • Property mode set to 100644
File size: 375 bytes
Line 
1#pragma once
2#include "object.hpp"
3
4class stack {
5        struct node {
6                ptr<object> value;
7                node* next;
8
9                node( const object& v, node* n = nullptr );
10        };
11        node* head;
12
13        void copy(const stack& o);
14public:
15        stack();
16        stack(const stack& o);
17        ~stack();
18        stack& operator= (const stack& o);
19
20        void clear();
21        bool empty() const;
22        void push(const object& value);
23        ptr<object> pop();
24};
Note: See TracBrowser for help on using the repository browser.