File: DummyNode.pm

package info (click to toggle)
libconfig-model-perl 2.152-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,220 kB
  • sloc: perl: 15,116; makefile: 9
file content (20 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# This file is part of Config-Model
#
# This software is Copyright (c) 2005-2022 by Dominique Dumont.
#
# This is free software, licensed under:
#
#   The GNU Lesser General Public License, Version 2.1, February 1999
#
package DummyNode;
use strict;
use warnings;

use base qw/Config::Model::Node/;

sub dummy {
    $_[1]++;
}

1;