List of commits:
Subject Hash Author Date (UTC)
working on example 31bcff3ed50891df5021c3c9f226e49705927e96 mucbuc 2020-03-20 03:23:07
update readme eed9ed92196460256a53e6d2fb147ea42550ed6d mucbuc 2020-02-24 12:39:08
use pragma once 87760dc750c951c5f1e7438a514ad73036058f6b mucbuc 2020-02-17 01:02:08
update dynamo/circuit 8ff53cef8d7573b1a846d699614edacd09e68889 mucbuc 2020-02-17 00:59:36
update dynamo and circuit 672bd2e329424816373f463183415e08cb858543 mucbuc 2020-02-17 00:52:40
format, update cb54c865eff013e4abb6ef86c54814b52b46257e mucbuc 2020-02-14 05:36:21
gen docs c9de816e21d2953c7ac4e73f0be3ccd440c84381 mucbuc 2020-02-12 14:13:08
rm twice-size dc7df761559ee90e089ff274290da3628f429a30 mucbuc 2020-02-12 13:43:34
update libs 177bc958e60841f894a4c9c4d5758db38e07a5c3 mucbuc 2020-02-12 13:22:59
once tests 9aae5bf8c8a46439e7b350c4166c1be22c6028bf mucbuc 2020-01-20 20:08:50
once a72a9ea4d78e082b0e4e6a8545af92e116bd7536 mucbuc 2020-01-20 17:32:34
dynamo 25b14b6965bb24b21516dde3f4a2a1922d518ae5 mucbuc 2020-01-20 17:27:35
concurrent test passes 2bd62976d536c8c81659453e899a2e9c588f4aa6 mucbuc 2020-01-20 12:54:46
update dynamo 3315ba6e643d56478aaf05761368d76e9025de79 mucbuc 2020-01-20 12:13:05
circular update 7545023e77dcb92f28612a62b6405cb488adddc8 mucbuc 2020-01-19 12:09:22
cleanup remove stuff abe9e96601cdfc558823e6d856d16dac8ad15929 mucbuc 2020-01-19 11:52:54
circut update 4d75370846cd93032a684b5193494273a9ba9da9 mucbuc 2020-01-19 11:50:21
dynamoe update 814d85ebb0c03dddfd2d804d404286cc01209687 mucbuc 2020-01-19 06:59:11
simplify interfiace f69d4f7a7c2c02125ac51ffb9d4ba41ed08f8646 mucbuc 2020-01-19 06:41:36
fix another test fd8e7fa14a4daa281e7fbcec875bfe56ce39e400 mucbuc 2020-01-18 22:42:40
Commit 31bcff3ed50891df5021c3c9f226e49705927e96 - working on example
Author: mucbuc
Author date (UTC): 2020-03-20 03:23
Committer name: mucbuc
Committer date (UTC): 2020-03-20 03:23
Parent(s): eed9ed92196460256a53e6d2fb147ea42550ed6d
Signing key:
Tree: 085dbccbcc1f96060826d745d70931d28736bfd4
File Lines added Lines deleted
src/interface.h 6 0
test/example.json 1 1
test/src/example.cpp 9 0
test/tests.json 2 1
File src/interface.h changed (mode: 100644) (index 2f20c6d..ee507e7)
... ... namespace control {
36 36 virtual void emit(event_type, U...) = 0; virtual void emit(event_type, U...) = 0;
37 37 }; };
38 38
39 template<typename T, typename ... U>
40 std::shared_ptr<Emitter<T, U...>> make_Emitter();
41
42 template<typename T, typename ... U>
43 std::shared_ptr<Emitter<T, U...>> make_Quemitter();
44
39 45 } //control } //control
40 46 } // om636 } // om636
File test/example.json copied from file test/on.json (similarity 74%) (mode: 100644) (index a4d221e..1038bf9)
3 3 "lib/ohm/ohm.json" "lib/ohm/ohm.json"
4 4 ], ],
5 5 "sources": [ "sources": [
6 "src/on.cpp"
6 "src/example.cpp"
7 7 ] ]
8 8 } }
File test/src/example.cpp added (mode: 100644) (index 0000000..86db7e7)
1 #include <tmp/src/test.h>
2 #include <lib/ohm/src/interface.h>
3
4 #include <iostream>
5
6 int main() {
7 std::cout << "hello" << std::endl;
8 return 0;
9 }
File test/tests.json changed (mode: 100644) (index 984c27a..a7d4ec9)
10 10 "modify_while_traversal.json", "modify_while_traversal.json",
11 11 "on_while_emit.json", "on_while_emit.json",
12 12 "once_while_emit.json", "once_while_emit.json",
13 "once_while_emit_recursive.json"
13 "once_while_emit_recursive.json",
14 "example.json"
14 15 ] } ] }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/ohm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/ohm

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/ohm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main