David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
43a7d0d
Branches
Tags
c++11
main
start
testcode.git
product
lifetime.h
Add a lifetime object to test scopes
dblume
commited
43a7d0d
at 2024-09-13 20:15:11
lifetime.h
Blame
History
Raw
#pragma once struct Lifetime { Lifetime(); ~Lifetime(); Lifetime(const Lifetime &); Lifetime(Lifetime &&); Lifetime &operator=(Lifetime &&); Lifetime &operator=(const Lifetime &); int data_; };