Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
swig4.0 /
go /
[ HOME SHELL ]
Name
Size
Permission
Action
cdata.i
2.28
KB
-rw-r--r--
director.swg
1.48
KB
-rw-r--r--
exception.i
173
B
-rw-r--r--
go.swg
15.67
KB
-rw-r--r--
gokw.swg
555
B
-rw-r--r--
goruntime.swg
8.6
KB
-rw-r--r--
gostring.swg
851
B
-rw-r--r--
std_common.i
101
B
-rw-r--r--
std_deque.i
28
B
-rw-r--r--
std_except.i
1.26
KB
-rw-r--r--
std_list.i
928
B
-rw-r--r--
std_map.i
1.98
KB
-rw-r--r--
std_pair.i
773
B
-rw-r--r--
std_string.i
2.21
KB
-rw-r--r--
std_vector.i
2.83
KB
-rw-r--r--
stl.i
291
B
-rw-r--r--
typemaps.i
9.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : std_vector.i
/* ----------------------------------------------------------------------------- * std_vector.i * ----------------------------------------------------------------------------- */ %{ #include <vector> #include <stdexcept> %} namespace std { template<class T> class vector { public: typedef size_t size_type; typedef ptrdiff_t difference_type; typedef T value_type; typedef value_type* pointer; typedef const value_type* const_pointer; typedef value_type& reference; typedef const value_type& const_reference; vector(); vector(size_type n); vector(const vector& other); size_type size() const; size_type capacity() const; void reserve(size_type n); %rename(isEmpty) empty; bool empty() const; void clear(); %rename(add) push_back; void push_back(const value_type& x); %extend { const_reference get(int i) throw (std::out_of_range) { int size = int(self->size()); if (i>=0 && i<size) return (*self)[i]; else throw std::out_of_range("vector index out of range"); } void set(int i, const value_type& val) throw (std::out_of_range) { int size = int(self->size()); if (i>=0 && i<size) (*self)[i] = val; else throw std::out_of_range("vector index out of range"); } } }; // bool specialization template<> class vector<bool> { public: typedef size_t size_type; typedef ptrdiff_t difference_type; typedef bool value_type; typedef value_type* pointer; typedef const value_type* const_pointer; typedef value_type& reference; typedef bool const_reference; vector(); vector(size_type n); vector(const vector& other); size_type size() const; size_type capacity() const; void reserve(size_type n); %rename(isEmpty) empty; bool empty() const; void clear(); %rename(add) push_back; void push_back(const value_type& x); %extend { bool get(int i) throw (std::out_of_range) { int size = int(self->size()); if (i>=0 && i<size) return (*self)[i]; else throw std::out_of_range("vector index out of range"); } void set(int i, const value_type& val) throw (std::out_of_range) { int size = int(self->size()); if (i>=0 && i<size) (*self)[i] = val; else throw std::out_of_range("vector index out of range"); } } }; }
Close