Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33ccbbe

Browse files
committedDec 11, 2014
Rename toplevel namespace from music to ::bmc.
1 parent fbde768 commit 33ccbbe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+439
-439
lines changed
 

‎bmc.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ int bmc2ly( std::wistream &wistream
2626

2727
iterator_type iter = source.begin();
2828
iterator_type const end = source.end();
29-
typedef music::braille::error_handler<iterator_type> error_handler_type;
29+
typedef ::bmc::braille::error_handler<iterator_type> error_handler_type;
3030
error_handler_type error_handler(iter, end);
31-
typedef music::braille::score_grammar<iterator_type> parser_type;
31+
typedef ::bmc::braille::score_grammar<iterator_type> parser_type;
3232
parser_type parser(error_handler);
3333
boost::spirit::traits::attribute_of<parser_type>::type score;
3434

3535
bool const success = parse(iter, end, parser, score);
3636

3737
if (success and iter == end) {
38-
music::braille::compiler<error_handler_type> compile(error_handler);
38+
::bmc::braille::compiler<error_handler_type> compile(error_handler);
3939
if (compile(score)) {
4040
std::wcerr << error_handler;
4141
if (lilypond) {
42-
music::lilypond::generator generate(std::cout, true, true, include_locations);
42+
::bmc::lilypond::generator generate(std::cout, true, true, include_locations);
4343
if (not instrument.empty()) generate.instrument(instrument);
4444
if (no_tagline) generate.remove_tagline();
4545
generate(score);
4646
}
4747
if (musicxml) {
48-
music::musicxml(std::cout, score);
48+
::bmc::musicxml(std::cout, score);
4949
}
5050
return EXIT_SUCCESS;
5151
} else {

‎brlsym.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include "brlsym.hpp"
88

9-
namespace music { namespace braille {
9+
namespace bmc { namespace braille {
1010

1111
upper_digit_symbols::upper_digit_symbols()
1212
{

0 commit comments

Comments
 (0)
Please sign in to comment.