-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a18056
commit e354961
Showing
6 changed files
with
46 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,19 +46,20 @@ const std::string nwb_retinotopy = R"delimiter( | |
const std::string namespaces = R"delimiter( | ||
{"namespaces":[{"name":"core","doc":"NWB namespace","author":["Andrew Tritt","Oliver Ruebel","Ryan Ly","Ben Dichter","Keith Godfrey","Jeff Teeters"],"contact":["[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]"],"full_name":"NWB core","schema":[{"namespace":"hdmf-common"},{"source":"nwb.base"},{"source":"nwb.device"},{"source":"nwb.epoch"},{"source":"nwb.image"},{"source":"nwb.file"},{"source":"nwb.misc"},{"source":"nwb.behavior"},{"source":"nwb.ecephys"},{"source":"nwb.icephys"},{"source":"nwb.ogen"},{"source":"nwb.ophys"},{"source":"nwb.retinotopy"}],"version":"2.7.0"}]})delimiter"; | ||
|
||
void registerVariables(std::map<std::string, const std::string*>& registry) { | ||
registry["nwb.base"] = &nwb_base; | ||
registry["nwb.device"] = &nwb_device; | ||
registry["nwb.epoch"] = &nwb_epoch; | ||
registry["nwb.image"] = &nwb_image; | ||
registry["nwb.file"] = &nwb_file; | ||
registry["nwb.misc"] = &nwb_misc; | ||
registry["nwb.behavior"] = &nwb_behavior; | ||
registry["nwb.ecephys"] = &nwb_ecephys; | ||
registry["nwb.icephys"] = &nwb_icephys; | ||
registry["nwb.ogen"] = &nwb_ogen; | ||
registry["nwb.ophys"] = &nwb_ophys; | ||
registry["nwb.retinotopy"] = &nwb_retinotopy; | ||
registry["namespace"] = &namespaces; | ||
void registerVariables(std::map<std::string, const std::string*>& registry) | ||
{ | ||
registry["nwb.base"] = &nwb_base; | ||
registry["nwb.device"] = &nwb_device; | ||
registry["nwb.epoch"] = &nwb_epoch; | ||
registry["nwb.image"] = &nwb_image; | ||
registry["nwb.file"] = &nwb_file; | ||
registry["nwb.misc"] = &nwb_misc; | ||
registry["nwb.behavior"] = &nwb_behavior; | ||
registry["nwb.ecephys"] = &nwb_ecephys; | ||
registry["nwb.icephys"] = &nwb_icephys; | ||
registry["nwb.ogen"] = &nwb_ogen; | ||
registry["nwb.ophys"] = &nwb_ophys; | ||
registry["nwb.retinotopy"] = &nwb_retinotopy; | ||
registry["namespace"] = &namespaces; | ||
}; | ||
} // namespace AQNWB::spec::core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,11 @@ const std::string sparse = R"delimiter( | |
const std::string namespaces = R"delimiter( | ||
{"namespaces":[{"name":"hdmf-common","doc":"Common data structures provided by HDMF","author":["Andrew Tritt","Oliver Ruebel","Ryan Ly","Ben Dichter"],"contact":["[email protected]","[email protected]","[email protected]","[email protected]"],"full_name":"HDMF Common","schema":[{"source":"base"},{"source":"table"},{"source":"sparse"}],"version":"1.8.0"}]})delimiter"; | ||
|
||
void registerVariables(std::map<std::string, const std::string*>& registry) { | ||
registry["base"] = &base; | ||
registry["table"] = &table; | ||
registry["sparse"] = &sparse; | ||
registry["namespace"] = &namespaces; | ||
void registerVariables(std::map<std::string, const std::string*>& registry) | ||
{ | ||
registry["base"] = &base; | ||
registry["table"] = &table; | ||
registry["sparse"] = &sparse; | ||
registry["namespace"] = &namespaces; | ||
}; | ||
} // namespace AQNWB::spec::hdmf_common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,10 @@ const std::string resources = R"delimiter( | |
const std::string namespaces = R"delimiter( | ||
{"namespaces":[{"name":"hdmf-experimental","doc":"Experimental data structures provided by HDMF. These are not guaranteed to be available in the future.","author":["Andrew Tritt","Oliver Ruebel","Ryan Ly","Ben Dichter","Matthew Avaylon"],"contact":["[email protected]","[email protected]","[email protected]","[email protected]","[email protected]"],"full_name":"HDMF Experimental","schema":[{"namespace":"hdmf-common"},{"source":"experimental"},{"source":"resources"}],"version":"0.5.0"}]})delimiter"; | ||
|
||
void registerVariables(std::map<std::string, const std::string*>& registry) { | ||
registry["experimental"] = &experimental; | ||
registry["resources"] = &resources; | ||
registry["namespace"] = &namespaces; | ||
void registerVariables(std::map<std::string, const std::string*>& registry) | ||
{ | ||
registry["experimental"] = &experimental; | ||
registry["resources"] = &resources; | ||
registry["namespace"] = &namespaces; | ||
}; | ||
} // namespace AQNWB::spec::hdmf_experimental |