/inotify-cxx/trunk/inotify-cxx.cpp |
---|
5,7 → 5,7 |
* |
* inotify C++ interface |
* |
* Copyright (C) 2006 Lukas Jelinek <lukas@aiken.cz> |
* Copyright (C) 2006, 2007 Lukas Jelinek <lukas@aiken.cz> |
* |
* This program is free software; you can redistribute it and/or |
* modify it under the terms of one of the following licenses: |
145,6 → 145,14 |
DUMP_SEP; |
rStr.append("IN_CLOSE"); |
} |
#ifdef IN_MOVE_SELF |
if (IsType(uValue, IN_MOVE_SELF)) { |
DUMP_SEP; |
rStr.append("IN_MOVE_SELF"); |
} |
#endif // IN_MOVE_SELF |
else { |
if (IsType(uValue, IN_CLOSE_WRITE)) { |
DUMP_SEP; |
204,13 → 212,6 |
rStr.append("IN_ONLYDIR"); |
} |
#endif // IN_ONLYDIR |
#ifdef IN_MOVE_SELF |
if (IsType(uValue, IN_MOVE_SELF)) { |
DUMP_SEP; |
rStr.append("IN_MOVE_SELF"); |
} |
#endif // IN_MOVE_SELF |
} |
void InotifyEvent::DumpTypes(std::string& rStr) const |
/inotify-cxx/trunk/CHANGELOG |
---|
1,3 → 1,6 |
0.6.2 2007-01-03 |
* bad IN_MOVE_SELF dumping in IN_ALL_EVENTS fixed (#0000118) |
0.6.1 2006-12-30 |
* fixed incorrect behavior for IN_ONESHOT (#0000113) |
/inotify-cxx/trunk/inotify-cxx.h |
---|
5,7 → 5,7 |
* |
* inotify C++ interface |
* |
* Copyright (C) 2006 Lukas Jelinek, <lukas@aiken.cz> |
* Copyright (C) 2006, 2007 Lukas Jelinek, <lukas@aiken.cz> |
* |
* This program is free software; you can redistribute it and/or |
* modify it under the terms of one of the following licenses: |
/inotify-cxx/trunk/COPYING |
---|
1,6 → 1,6 |
inotify C++ interface |
Copyright (C) 2006 Lukas Jelinek, <lukas@aiken.cz> |
Copyright (C) 2006, 2007 Lukas Jelinek, <lukas@aiken.cz> |
This program is free software; you can redistribute it and/or |
modify it under the terms of one of the following licenses: |
/inotify-cxx/trunk/LICENSE-X11 |
---|
1,4 → 1,4 |
Copyright (c) 2006 Lukas Jelinek |
Copyright (c) 2006, 2007 Lukas Jelinek |
Permission is hereby granted, free of charge, to any person |
obtaining a copy of this software and associated documentation |
/inotify-cxx/trunk/README |
---|
1,7 → 1,7 |
inotify C++ interface |
(c) Lukas Jelinek, 2006 |
(c) Lukas Jelinek, 2006, 2007 |
1. About |
2. Requirements |